home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue.arc / TVOBJECT.C < prev    next >
C/C++ Source or Header  |  1990-01-09  |  588b  |  17 lines

  1. #include "tvapi.h"
  2.  
  3. /*======================================================*/
  4. /* TVobject   get a TopView object handle               */
  5. /*   John Navas                                         */
  6. /*   Ralf Brown 6/23/88 rewrote with TVsendmsg1         */
  7. /*======================================================*/
  8.  
  9. OBJECT pascal TVobject(WORD which)
  10. {
  11.    /* OR the specification with 1 to make sure we ask for a return which */
  12.    /* does not need an additional parameter on the stack */
  13.    return (OBJECT) TVsendmsg1(OBJECT_MSG, which|1, 0) ;
  14. }
  15.  
  16. /* End of TVOBJECT.C */
  17.